خرید بک لینک
Hello i have here a little Script for https://freebitco.in/?r=11758277 Im new on scripting and not so good on math..... Maybe you Can say me what i Can do better! Thanks for your help Code: var baseBet = '0.00000001',     betOdds = 2.5,     minWait = 800,     maxWait = 1200,     autobetRuing = true,     stopBefore = 2,     betHiLo = true,     $loButton = $('#double_your_btc_bet_lo_button'),     $hiButton = $('#double_your_btc_bet_hi_button'); $('#double_your_btc_payout_multiplier').val(betOdds); function startAutobet(){     console.log('Tuing autobet on...');     resetBet();     $loButton.trigger('click'); } function stopAutobet(){     console.log('Tuing autobet off...');     autobetRuing = false; } function getRandomWait(){     var waitTime = Math.floor(Math.random() * (maxWait-minWait)) + minWait;     console.log('Waiting for ' + waitTime + 'ms before next bet...');     retu waitTime; } function multiplyBet(){     var currentBet = $('#double_your_btc_stake').val(),      

برچسب: نویسنده: آیلین رضوانی تاريخ: شنبه 21 بهمن 1396 ساعت: 5:39

Hi, I need some advice. I have a search form and it is able to do a search. But when there is no serach record found, it will show this message "Notice: Undefined variable: retuArray in C:xampphtdocs....". I need advice on how to prevent from showing the error messgae. Thanks PS: I only input the part of the code that I having issue and not the full code. Below is my code for search page Code: <fieldset>     <form name="search" method="post" action="doSearch.php">         <font face="Arial" size="normal">         <table style="width: 50%;">             <tr>                 <td colspan="2" align="center"><h3>Search Car</h3></td>             </tr>             <tr>                 <td>&nbsp;</td>                 <td>&nbsp;</td>  

برچسب: نویسنده: آیلین رضوانی تاريخ: شنبه 21 بهمن 1396 ساعت: 5:39

In a Visual Studio Win Form project I have a DGV on a form which displays class objects created from an sql server. To update the data, the user clicks an Update button on the form. This opens a second form that lets the user select column(s) to update. After updating, form2 calls a method in form1 that displays updated object values. To display the updated values, the Update method needs to reference the existing instance of its class. So I need to pass the instance 'this' from form1 to form2, store the object instance, then pass it back to form1 after the update is complete. This is my approach. Code: public partial class Class1: Form     { public Class() {  InitializeComponent(); } public Class1_Load() { Create and populate DGV. } public static void UpdateDGV(object form) { DataGridView dgv = form. } private void Update() { Class2 class2 = new Class2(this); class2.visible = true; } } In Class2 Code: public partial class Class2: Form     {         public Class2(object X)         {             InitializeComponent();                

برچسب: نویسنده: آیلین رضوانی تاريخ: شنبه 21 بهمن 1396 ساعت: 5:39

Hello All, I am brand new to HTML and was hoping for some guidance on formatting a title. My goal is to put each letter of the title in its own box where the boxes are all equal size and equal spacing. Currently the way I am trying to accomplish this, the box fits to the size of the letter it contains. The way I have achieved this is by using span elements for each letter with a CSS class to apply the style. I am guessing there is a more efficient way to do this with the whole word. The code and current display is below. Anything helps, and I would like to avoiid having to do graphic design if possible. <h1><span class='titlebox1'>W</span><span class='titlebox1'>E</span><span class='titlebox1'>B</span></h1> .titlebox1{ border:1px solid black; padding:2px; background-color:white; color:black; width:48px; height:48px; } Attached Thumbnails  

برچسب: نویسنده: آیلین رضوانی تاريخ: شنبه 21 بهمن 1396 ساعت: 5:39

Hello guys, I have a webcam which sends every a fixed interval an image to my server. I have a PHP script which individuates the last sent image and renames it "webcam.jpg". Sometimes it happens that the image is not completely uploaded, and I obtain something like this: Schedule_20180205-083406.jpg this image is correctly readable, but it has some holes that are replaced with grey or something similar. What I would like to do is recognizing if the sent image presents this problem, and moving it to a different path. Can I do this with PHP? Thank you:D Attached Images Schedule_20180205-083406.jpg (28.3 KB)

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Since viewport user-scaleable=0 has no effect with new versions of apple and android (and is complained by validators yet) i've managed to solve it for apple IOS >=10 by using this javascript PHP Code: document.documentElement.addEventListener('touchstart', function (event) {             if (event.touches.length > 1) {                 event.preventDefault();             }         }, false); }  But how to do for android? Still able to pinch zoom. SUCKS. To all who goes "Well usabillity, there is a reason for this, blah blah", no. There is no reason for this. Good css / mediaqueries don't need to be zoomed.

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Hello everyone, I am pretty new to MySQL, and I have been working with some database reports and got stuck. In attached screenshot, there is part of data I need to work with, so where I am stuck at is: All of this is one object (work_order_unique_id) each of these objects have blocks (masterdata_id) - for each of those blocks there is multiple reasons why it is rejected or accepted and those have multiple records if their status changed over the time. So what I need to create and am stuck at is the final status of the object (work_order_unique_id) which will be rejected if there is atleast 1 rejected latest status in any of the blocks (masterdata_id), if all the latest statuses are accepted, the overall status for the object is accepted. Thank you for any ideas or Idea. Attached Thumbnails  

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Developing a mobile app about Films using The MovieDB API. I've got the code so it randomises a film, the only problem I have is that it doesn't display on the main page. Code is Code: $(document).on('pageinit', '#home', function(){ // $(document).ready(function(){     console.info('hi');       var latestUrl = 'https://api.themoviedb.org/3/movie/latest?',     singleUrl = 'https://api.themoviedb.org/3/movie/'     mode = 'search/movie?query=',     key = '&api_key=***',     latestId = 0,     targetId = 0;     $.ajax({         url: latestUrl + key ,         dataType: "jsonp",         async: true,         success: function (result) {             console.dir(result);             // ajax.parseJSONP(result);             latestId = result.id;             console.dir(latestId);             targetId = Math.floor(Math.random() * latestId);       &n

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

I have two stylesheets. My problem is the viewport. For example, This is the web view. This is the mobile viewport, As you can see, the sidebar is hiding the stylesheet 3 and 4. How to fix that? Another stylesheet, this is the web view: This is the mobile view, the video change its position, how to fix that? If i should send the code here, please tell me. Attached Thumbnails        

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

I have to write this code where only the even numbers are printed from an array. I have gotten then the code to work but it also prints "undefined" and I can't find the problem can anyone please help.

function start(){
var arr = [1,2,3,4,5,6];
var evens = onlyEvens(arr);
println(evens);
}
function onlyEvens(arr)
{
for ( var i = 0; i < arr.length; i++)
{
var cur = arr[i];
if(cur %2==0)
{
println(cur);
}
}
}

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

I'm pretty much new to this forum and I'm trying to lea Python programming, however I have some strong issues that need fixing, before I can begin with the programming, main one being that any text editor that I download from the world wide web won't run Python 3 code due to some settings that aren't correctly done or applied yet. So I'm asking you, if you are an expert and you've faced something similar, to offer me a solution on how to run a Python 3 code on text editors, such as Atom, Sublime Text, and Brackets? Any help would be greatly appreciated. :)

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Are you looking to apply your Safety Engineering knowledge to the design of cutting edge systems for the UKx92s existing and future submarine fleet? BAE Systems is looking for System/ Safety Engineers to join the Combat Systems Team based in Weymouth, Filton, Frimley or Plymouth. The Combat System encompasses the submarine's x91fight capabilityx92. This includes its ability to carry out all of the below whilst remaining undetected by other parties: x95 detect targets above and below the water x95 circumnavigate the globe underwater x95 intercept and send communications x95 load and fire weapons and countermeasures Joining the Combat Systems team will give you a unique and exciting opportunity to apply your knowledge and experience to a range of complex systems and platforms. You could be working on existing submarines such as the in-service Astute class, new classes currently in the design stage, and even future programmes which are looking at concept designs for submarines that wonx92t be in service for generations. As a Systems / Safety Engineer you will be carrying out a range of Safety Engineering activities and analyses on all areas of the combat system involved. This work will contribute

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Application - html drafts are ready, 6 pages
Database
Lucene search
Paid membership groups
Payment with PayPal or Tether
Admin pages

The website will be developed more over time.

It is for F&V market thread website but I'm willing to pay if no partners

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Thank you for the assist - It's a .xls file from constant contact, imported into Google Sheets. People have been importing to Constant Contact for years now, using TWO different birthday fields, causing incorrect searches and major problems for the business. I need to figure out java code to range-lock ONLY the cells in a 40,000 length column which have content, while leaving the other cells open to being pasted into. I then need to apply that code to the range, then cut and paste the other column over. This will remove redundancies while locking existing content. (at least in my head this is the easiest way as I can't seem to find a function that merges the way I need these two columns to) **see image THANK YOU Attached Thumbnails  

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Google has been saying I have broken links like the one in the title.. Where do these hide at? How do I find them?

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

I have a page ruing this https://codepen.io/hi-im-si/pen/uhxFn and I want to know how I can add $ before these numbers?

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

What are the thing we need to optimize a website. My question is what the things should the developers of a site consider (SEO wise) while they are developing the site? So that there wont be any hassle in the future while

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Good time of day.
Really need a method!!! how can I define, click on the "like" button from Facebook??????

Just a window with a button and close the window after clicking on the "Like"button.

Who knows, please help.

برچسب: نویسنده: آیلین رضوانی تاريخ: جمعه 20 بهمن 1396 ساعت: 16:05

Couldn't find a specific answer to this so thought I'd ask. In short, I have a table that retrieves information from an API, based on data stored in my database and all I want to do is to get a total of certain, not all, columns from that table so that I can use them elsewhere on the site. As an example, let's use the Profit/Loss column and Total Divi. Do I have to store the results as an array so that I can retrieve it elsewhere or is it something different? PHP Code: <?php     $arr = array();         for($x=0;$x<$y;$x++)          {?>             <tr>                 <td class="input"><?php                      if($pri[$x] > $lastprice[$x])                     {  

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

So I'm not sure if this really is an HTML issue or not, but I'm hoping that maybe someone here can help as I've been pulling my hair trying to solve this issue for the past few days.

My small business uses a Google account for out emails. We have these setup on outlook and use that for email, calendars, etc... I also have my personal gmail account on outlook. When I try to use an HTML signature through the business account the email is always sent to spam (tried sending to yahoo, hotmail, gmail, all go to spam). When I use the same signature on my personal account it works like a charm. So I assume this has something to do with the work account, but I can't for the life of me figure out what it is.

Anyone have any ideas or know where to even start figuring out this issue? Any help at all would be amazing!!!

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

Hey guys me again I am working on a separate project now. A weather visualization program with neopixels on a ESP8266. I have somewhat of a problem I don't know how to fix. So i have a function I call that has to go in a loop else the led's dont fade in and out like they should. so in the code below I put a while loop in there infinitely. The obviously problem is it never exits the loops and my ESP crashes as it detects an infinite loop. However my problem is I need to compare it to a variable outside of the function and I don't know how. i had tried with exte and #define but it just hates on anything i do and doesn't compile any suggestions? below is the function that runs the loop. What I need to replace is the while 1 != 2 loop with something like any suggestions? Code: This is the variable I want to make global / reachable within the SnowandRain function. This is pulled from weather undground json format and formatted into what I need it.  const char *weather = current["weather"]; This is the while loop while( Weather(this is the outside function) = WeatherType ) { do the function below } function Code: void SnowandRain(String WeatherType, String

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

I am trying to audit my website and wanted to know the top and most accurate free tool that can tell me what are the things that I need to update on my website?

Thanks,
Blair| rent-a-website.com.au

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

I created a small example for leaing HTML/CSS. I have "Menu" and "Seasons" on the menu bar. When the user places the mouse on the "Menu" (On Hover) then "Item A" and "Item B" needs to be shown. When the user places the mouse on "Item A" then "Item 1" and "Item 2" needs to be shown side to the "Item 1". I tried to achieve it but am not getting it right. For me when I place the mouse on the "Menu" then its showing all the items like "Item A", "Item B", "Item 1" "Item 2". I need "Item 1" and "Item 2" to be shown only when the cursor is place on "Item A" that too side to it without colliding the box. Here´s my code snippet Can anyone help me out please Code: nav li {         float: left;         list-style: none;         margin: 0;         padding: 0;         position: relative;         z-index: 10000; } nav li ul{         float: left;         lis

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

Not almost, but my sql database can't view my data correctly. What usually do in such trouble situation?

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

I am a newbie and have been frustrated trying to get this to work for days now. So I have a <div id=header> element at the top of my page which will consist of 3 things, an image to fit the entire height of the header on left side and two lists (one which is the address and the other is links (my nav bar) which I would like to be aligned to the right side of the page with first list at the top right and second at the bottom right). However, this has been impossible for me to achieve. No matter what I do, my list of links always ends up at the top instead of at the bottom right (undeeath the address div). Here's what I got: HTML: Code: <!DOCTYPE html> <!--hale -->         <meta charset = "utf-8" />         <link rel="stylesheet" type="text/css"                 href="hale.css" />        </head> <body> <div id="header">         <img src="eye.jpeg" alt="an eye">         <div class="topsect">  

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

Hello, Whenever I click on an div container a Jquery dialogs opens. Everything works smooth expect for the safari browser. For some weird reason when I scroll down it bugs and I dont know what i'm doing wrong. I hope someone can help me with this issue. video of the issue: https://streamable.com/89k8b Code:     $(window).resize(function() {             $(".dialog").dialog("option", "position", {my: "center", at: "center", of: window});         });         $(document).ready(function(){         $( ".dialog" ).dialog({ dialogClass: 'fixed-dialog', autoOpen:false});         });         var opt = {         autoOpen: false,         closeText: '<?php echo $lang["23"]; ?>',         width: 950,         height: 600,         title: null,         draggable: false,         modal: true,         create: function (ev

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

I've been working on an website, and we wanted to a animated background. But the problem with this is that my Navbar disappears after the second picture is displayed. This only happends on ios devices, because my partner tried it with android and it worked how it is supposed to. (tried it on both safari and google chrome.) With header: https://imgur.com/a/rLswc header disappears: https://imgur.com/a/G2A5b homepage: Code: <body> <div class="bg-fade">     <figure></figure>     <figure></figure>     <figure></figure>     <figure></figure>     <figure></figure> </div> <div id="main-container"> <!-- header --> <?php include('inc/header.php'); ?> CSS - BACKGROUND: Code: .bg-fade > figure {   top: 0px;   left: 0px;   color: transparent;   width: 100%;   height: 100%;   opacity: 0;   z-index: -1;   position: fixed;   animation: imageAnimation 36s linear infinite 0s;   background-size: cover;   backface-visibility: hidden; } .bg-fade > figure:nth-child(

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

Hi -

I am very new to Java Script and am working with some code I found on the inteet that allows me to create a dropdown list in my form based on a list in a spreadsheet. Here is a snippet of code:

[Code]
function updateForm(){
// call your form and coect to the drop-down item
var form = FormApp.openById(1yZ8Y8ZTKpEl78dFSmQd25ng2ouyUPhAP4OCsu4oE2DE);
var namesList = form.getItemById(1967939378).asListItem();
[Code]

The error message I receive is this: Missing ) after argument list. (line 3, file "Code")

I'm stumped!

Grilleman

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

Hi everyone! I need some help please. I am creating a online game using PHP, phpMyAdMin and MAMP.

1. My iMac (Yosemite) has MAMP installed and ruing ok.
2. In MAP - Tools it says phpMyAdmin (needs PHP 5.5.x to 7.0.x)

Any help will be much appriciated.
Kind Regards JoeGr

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

All,

Not sure which will be best, so posting this both in the PHP section and the JavaScript section, but I need processing code for expanding text with "Read More" link to show the extra content.

Doing this in WordPress and to make it work the user must be:
  1. Registered,
  2. Logged In.

Found many JavaScript and CSS examples, without the 2 requirements, but the requirements for this are a must as this is proprietary information and when registering the user must eSign the confidentiality agreement including a list of his/her associates/affiliates.

I'm also posting this on some WordPress Forums, to find the right flags or constant WP produces when registered and loggedin.

Cheers!

OMR

برچسب: نویسنده: آیلین رضوانی تاريخ: سه شنبه 10 بهمن 1396 ساعت: 16:45

صفحه بندی